home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / mm / table.c.D < prev    next >
Text File  |  1990-07-25  |  2KB  |  88 lines

  1. *** /tmp/,RCSt1022408    Wed Jul 25 13:59:48 1990
  2. --- table.c    Mon Jul 23 11:44:23 1990
  3. ***************
  4. *** 4,14 ****
  5.   
  6. ! #include "../h/const.h"
  7. ! #include "../h/type.h"
  8. ! #include "const.h"
  9.   
  10. ! #undef EXTERN
  11. ! #define EXTERN
  12. ! #include "../h/callnr.h"
  13. ! #include "glo.h"
  14.   #include "mproc.h"
  15. --- 4,9 ----
  16.   
  17. ! #define _TABLE
  18.   
  19. ! #include "mm.h"
  20. ! #include <minix/callnr.h>
  21.   #include "mproc.h"
  22. ***************
  23. *** 17,26 ****
  24.   /* Miscellaneous */
  25. ! char core_name[] = {"core"};    /* file name where core images are produced */
  26. ! /*
  27. !  * Creating core files is disabled, except for SIGQUIT and SIGIOT.
  28. !  * Set core_bits to 0x0EFC if you want compatibility with UNIX V7.
  29. !  */
  30. ! unshort core_bits = 0x0024;    /* which signals cause core images */
  31.   
  32. - extern char mm_stack[];
  33.   char *stackpt = &mm_stack[MM_STACK_BYTES];    /* initial stack pointer */
  34. --- 12,16 ----
  35.   /* Miscellaneous */
  36. ! char core_name[] = "core";    /* file name where core images are produced */
  37. ! unshort core_bits = 0x0EFC;    /* which signals cause core images */
  38.   
  39.   char *stackpt = &mm_stack[MM_STACK_BYTES];    /* initial stack pointer */
  40. ***************
  41. *** 27,32 ****
  42.   
  43. - extern do_mm_exit(), do_fork(), do_wait(), do_brk(), do_getset(), do_exec();
  44. - extern do_signal(), do_kill(), do_pause(), do_alarm();
  45. - extern no_sys(), unpause(), do_ksig(), do_brk2();
  46.   int (*call_vec[NCALLS])() = {
  47. --- 17,18 ----
  48. ***************
  49. *** 58,60 ****
  50.       no_sys,        /* 25 = stime    */
  51. !     no_sys,        /* 26 = (ptrace)*/
  52.       do_alarm,    /* 27 = alarm    */
  53. --- 44,46 ----
  54.       no_sys,        /* 25 = stime    */
  55. !     do_trace,    /* 26 = ptrace    */
  56.       do_alarm,    /* 27 = alarm    */
  57. ***************
  58. *** 70,74 ****
  59.       do_kill,    /* 37 = kill    */
  60. !     no_sys,        /* 38 = unused    */
  61. !     no_sys,        /* 39 = unused    */
  62. !     no_sys,        /* 40 = unused    */
  63.       no_sys,        /* 41 = dup    */
  64. --- 56,60 ----
  65.       do_kill,    /* 37 = kill    */
  66. !     no_sys,        /* 38 = rename    */
  67. !     no_sys,        /* 39 = mkdir    */
  68. !     no_sys,        /* 40 = rmdir    */
  69.       no_sys,        /* 41 = dup    */
  70. ***************
  71. *** 101,103 ****
  72.       no_sys,        /* 67 = REVIVE    */
  73. !     no_sys        /* 68 = TASK_REPLY    */
  74.   };
  75. --- 87,96 ----
  76.       no_sys,        /* 67 = REVIVE    */
  77. !     no_sys,        /* 68 = TASK_REPLY    */
  78. ! #if (CHIP == INTEL)
  79. ! #if AM_KERNEL
  80. !     do_amoeba,    /* 69 = AMOEBA SYSTEM CALL */
  81. ! #else
  82. !     no_sys,        /* 69 = AMOEBA SYSTEM CALL */
  83. ! #endif
  84. ! #endif
  85.   };
  86.